home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 October / enter-2005-10.iso / files / jedit42install.exe / {app} / jedit.jar / bsh / commands / clear.bsh < prev    next >
Encoding:
Text File  |  2003-12-27  |  242 b   |  11 lines

  1. /**
  2.     Clear all variables, methods, and imports from this namespace.
  3.     If this namespace is the root, it will be reset to the default 
  4.     imports.
  5.     See NameSpace.clear();
  6.     @see NameSpace.clear();
  7. */
  8. clear() {
  9.     this.caller.namespace.clear();
  10. }
  11.